home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
glisp.zoo
/
TT0.GL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-08-04
|
413 b
|
17 lines
"catch/throw/unwind-protect test. Should print :
debut c1 c2 le-throw fin-unwind-protect fin-progn"
(progn
(print "debut")
(catch :c1
(print "c1")
(unwind-protect
(catch :c2
(print "c2")
(throw :c1
(print "le-throw")
999)
(print "fin-c2"))
(print "fin-unwind-protect"))
(print "fin-c1"))
(print "fin-progn"))